home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevmswn.h < prev    next >
C/C++ Source or Header  |  1997-05-09  |  4KB  |  110 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevmswn.h */
  20. /* Shared definitions for Microsoft Windows 3.n drivers */
  21. #include "string_.h"
  22. #include <stdlib.h>
  23. #include "dos_.h"
  24. #include "gx.h"
  25. #include "gserrors.h"
  26. #include "gxdevice.h"
  27. #include "memory_.h"
  28.  
  29. #include "windows_.h"
  30. #include <shellapi.h>
  31. #include "gp_mswin.h"
  32.  
  33. typedef struct gx_device_win_s gx_device_win;
  34.  
  35. /* Utility routines in gdevmswn.c */
  36. LPLOGPALETTE win_makepalette(P1(gx_device_win *));
  37. int win_nomemory(P0());
  38. void win_update(P1(gx_device_win *));
  39.  
  40. /* Device procedures shared by all implementations. */
  41. /* Implementations may wrap their own code around _open and _close. */
  42. dev_proc_open_device(win_open);
  43. dev_proc_sync_output(win_sync_output);
  44. dev_proc_output_page(win_output_page);
  45. dev_proc_close_device(win_close);
  46. dev_proc_map_rgb_color(win_map_rgb_color);
  47. dev_proc_map_color_rgb(win_map_color_rgb);
  48. dev_proc_get_params(win_get_params);
  49. dev_proc_put_params(win_put_params);
  50. dev_proc_get_xfont_procs(win_get_xfont_procs);
  51. dev_proc_get_alpha_bits(win_get_alpha_bits);
  52.  
  53. /* Common part of the device descriptor. */
  54.  
  55. #define win_proc_copy_to_clipboard(proc)\
  56.   void proc(P1(gx_device_win *))
  57.  
  58. #define win_proc_repaint(proc)\
  59.   void proc(P8(gx_device_win *, HDC, int, int, int, int, int, int))
  60.  
  61. #define win_proc_alloc_bitmap(proc)\
  62.   int proc(P2(gx_device_win *, gx_device *))
  63.  
  64. #define win_proc_free_bitmap(proc)\
  65.   void proc(P1(gx_device_win *))
  66.  
  67. #define win_gsview_sizeof 80
  68.  
  69. #define gx_device_win_common\
  70.     int BitsPerPixel;\
  71.     int nColors;\
  72.     int alpha_text;\
  73.     int alpha_graphics;\
  74.     byte *mapped_color_flags;\
  75.         /* Implementation-specific procedures */\
  76.     win_proc_alloc_bitmap((*alloc_bitmap));\
  77.     win_proc_free_bitmap((*free_bitmap));\
  78.         /* Handles */\
  79.     HPALETTE himgpalette;\
  80.     LPLOGPALETTE limgpalette
  81.  
  82. /* The basic window device */
  83. struct gx_device_win_s {
  84.     gx_device_common;
  85.     gx_device_win_common;
  86. };
  87.  
  88. /* Initial values for width and height */
  89. #define INITIAL_RESOLUTION 96.0
  90. #define INITIAL_WIDTH (INITIAL_RESOLUTION * 85 / 10 + 1)
  91. #define INITIAL_HEIGHT (INITIAL_RESOLUTION * 11 + 1)
  92.  
  93. /* A macro for casting the device argument */
  94. #define wdev ((gx_device_win *)dev)
  95.  
  96. /* RasterOp codes */
  97. #define rop_write_at_1s 0xE20746L    /* BitBlt: write brush at 1's */
  98. #define rop_write_at_0s 0xB8074AL    /* BitBlt: write brush at 0's */
  99. #define rop_write_0_at_1s 0x220326L    /* BitBlt: ~S & D */
  100. #define rop_write_0_at_0s 0x8800C6L    /* BitBlt: S & D */
  101. #define rop_write_1s 0xFF0062L        /* write 1's */
  102. #define rop_write_0s 0x000042L        /* write 0's */
  103. #define rop_write_pattern 0xF00021L    /* PatBlt: write brush */
  104.  
  105. /* Compress a gx_color_value into an 8-bit Windows color value, */
  106. /* using only the high order 5 bits. */
  107. #define win_color_value(z)\
  108.   ((((z) >> (gx_color_value_bits - 5)) << 3) +\
  109.    ((z) >> (gx_color_value_bits - 3)))
  110.